home *** CD-ROM | disk | FTP | other *** search
- .TH CDIVIDE
- 6 "IRIT Version 6.0"
- .SH NAME
- CDIVIDE
-
-
-
- ListType CDIVIDE( CurveType Curve, NumericType Param )
-
- Subdivides a curve into two sub-curves at the specified parameter value.
- Curve can be either a Bspline curve in which Param must be
- within the Curve's parametric domain, or a Bezier curve in which Param
- must be in the range of zero to one.
-
- It returns a list of the two sub-curves. The individual curves may be
- extracted from the list using the NTH command.
-
- Example:
-
- CrvLst = CDIVIDE( Crv, 1.3 );
- Crv1 = nth( CrvLst, 1 );
- Crv2 = nth( CrvLst, 2 );
-
- subdivides the curve Crv at the parameter value of 0.5.
-